home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgramD2.iso / Borland / Borland C++ V5.02 / DIALOG.PAK / MODELESS.H < prev    next >
C/C++ Source or Header  |  1997-05-06  |  459b  |  15 lines

  1. // Dialog box procedures must be exported in 16-bit applications for Windows.
  2. #ifdef WIN16
  3. LRESULT CALLBACK __export Modeless(HWND, UINT, WPARAM, LPARAM);
  4. #else
  5. LRESULT CALLBACK Modeless(HWND, UINT, WPARAM, LPARAM);
  6. #endif
  7.  
  8. extern DLGPROC lpProcModeless;
  9. extern HWND    hwndModeless;
  10.  
  11. #define IDD_MODELESSDIALOG          101
  12. #define IDD_RED                     104
  13. #define IDD_GREEN                   105
  14. #define IDD_BLUE                    106
  15.